home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 42 / Amiga Format AFCD42 (Issue 126, Aug 1999).iso / -serious- / comms / other / slrn / slrn_src / src / chmap.h < prev    next >
C/C++ Source or Header  |  1999-05-14  |  1KB  |  35 lines

  1. #ifndef _SLRN_CHMAP_H
  2. #define _SLRN_CHMAP_H
  3. /* Copyright (c) 1998 John E. Davis (davis@space.mit.edu)
  4.  *
  5.  * This file is part of slrn.
  6.  *
  7.  * Slrn is free software; you can redistribute it and/or modify it
  8.  * under the terms of the GNU General Public License as published by the
  9.  * Free Software Foundation; either version 2, or (at your option) any
  10.  * later version.
  11.  * 
  12.  * Slrn is distributed in the hope that it will be useful, but WITHOUT
  13.  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  14.  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  15.  * for more details.
  16.  * 
  17.  * You should have received a copy of the GNU General Public License
  18.  * along with Slrn; see the file COPYING.  If not, write to the Free
  19.  * Software Foundation, 59 Temple Place - Suite 330, 
  20.  * Boston, MA  02111-1307, USA.
  21.  */
  22.  
  23.  
  24. extern int slrn_set_charset (char *);
  25. extern int slrn_chmap_fix_file (char *);
  26. extern void slrn_chmap_fix_body (void);
  27. extern void slrn_chmap_fix_headers (void);
  28.  
  29. #if SLRN_HAS_CHARACTER_MAP
  30. extern char *Slrn_Charset;
  31. extern void slrn_chmap_show_supported (void);
  32. #endif
  33.  
  34. #endif
  35.